home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / basic / ace24dist.lha / ace24.lha / include / graphics / GraphInt.h < prev    next >
C/C++ Source or Header  |  1996-09-10  |  665b  |  40 lines

  1. #ifndef GRAPHICS_GRAPHINT_H
  2. #define GRAPHICS_GRAPHINT_H 1
  3. /*
  4. ** graphint.h for ACE Basic
  5. **
  6. ** Note: Translated to ACE by ConvertC2ACE
  7. **       @ MapMeadow Software, Nils Sjoholm
  8. **
  9. **
  10. ** Date: 09/01/95
  11. **
  12. **
  13. */
  14.  
  15. /*
  16. ** This are the StructPointer defines for graphint.h
  17. */
  18. #ifndef IsrvstrPtr
  19. #define IsrvstrPtr ADDRESS
  20. #endif
  21. /*
  22. ** End of StructPointer defines for graphint.h
  23. */
  24.        
  25. #ifndef EXEC_NODES_H
  26. #include <exec/nodes.h>
  27. #endif
  28.  
  29. /* structure used by AddTOFTask */
  30. STRUCT Isrvstr
  31.  
  32.     Node is_Node 
  33.     IsrvstrPtr  Iptr    /* passed to srvr by os */
  34.     ADDRESS   code 
  35.     ADDRESS   ccode
  36.     LONGINT Carg 
  37. END STRUCT 
  38.  
  39. #endif  /* GRAPHICS_GRAPHINT_H */
  40.